home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / osCommerce_xss.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  65 lines

  1. #
  2. # written by K-Otik.com <ReYn0@k-otik.com>
  3. #
  4. # osCommerce Cross Site Scripting Bugs
  5. #
  6. # Ref (added by rd) :
  7. #  Message-ID: <009e01c2eef9$069683b0$0900a8c0@compcaw8>
  8. #  From: Daniel Alcßntara de la Hoz <seguridad@iproyectos.com>
  9. #  To: <bugtraq@securityfocus.com>
  10. #  Subject: [IPS] osCommerce multiple XSS vulnerabilities
  11. #
  12.  
  13. if (description)
  14. {
  15.  script_id(11437);
  16.  script_bugtraq_id(7151, 7153, 7155, 7156, 7158);
  17.  script_version ("$Revision: 1.10 $");
  18.  
  19.  script_name(english:"osCommerce Cross Site Scripting Bugs");
  20.  desc["english"] = "
  21. osCommerce is a widely installed open source shopping e-commerce solution.
  22. An attacker may use it to perform a cross site scripting attack on
  23. this host.
  24.  
  25. Solution : Upgrade to a newer version.
  26. Risk factor : Medium";
  27.  
  28.  script_description(english:desc["english"]);
  29.  script_summary(english:"Determine if osCommerce is vulnerable to xss attack");
  30.  script_category(ACT_GATHER_INFO);
  31.  script_family(english:"CGI abuses : XSS", francais:"Abus de CGI");
  32.  script_copyright(english:"This script is Copyright (C) 2003 k-otik.com");
  33.  script_dependencie("find_service.nes", "http_version.nasl", "cross_site_scripting.nasl");
  34.  script_require_ports("Services/www", 80);
  35.  exit(0);
  36. }
  37.  
  38. include("http_func.inc");
  39. include("http_keepalive.inc");
  40.  
  41. port = get_http_port(default:80);
  42.  
  43. if(!get_port_state(port))exit(0);
  44. if(get_kb_item(string("www/", port, "/generic_xss"))) exit(0);
  45. if(!can_host_php(port:port)) exit(0);
  46.  
  47. dir = make_list(cgi_dirs());
  48.  
  49.  
  50.  
  51. foreach d (dir)
  52. {
  53.  url = string(d, "/default.php?error_message=<script>window.alert(document.cookie);</script>");
  54.  req = http_get(item:url, port:port);
  55.  buf = http_keepalive_send_recv(port:port, data:req, bodyonly:1);
  56.  if( buf == NULL ) exit(0);
  57.  
  58.  if(ereg(pattern:"^HTTP/[0-9]\.[0-9] 200 .*", string:buf) &&
  59.     "<script>window.alert(document.cookie);</script>" >< buf)
  60.    {
  61.     security_warning(port:port);
  62.     exit(0);
  63.    }
  64. }
  65.